home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
programs_-_include
/
ASM-SPAR.{_6
/
ATOPS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-17
|
413b
|
23 lines
/* atops.h: Atomic SPARC operations.
*
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
*/
#ifndef _SPARC_ATOPS_H
#define _SPARC_ATOPS_H
#ifdef __SMP__
extern __inline__ __volatile__ unsigned char ldstub(volatile unsigned char *lock)
{
volatile unsigned char retval;
__asm__ __volatile__("ldstub [%1], %0\n\t" :
"=&r" (retval) :
"r" (lock));
return retval;
}
#endif
#endif